home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / BOXES / HISTORY / EXAMPLE.ZIP / Hcbtest.dpr < prev    next >
Text File  |  1996-05-19  |  244b  |  14 lines

  1. program Hcbtest;
  2.  
  3. uses
  4.   Forms,
  5.   hcbtest1 in 'hcbtest1.pas' {frmTestHistoryComboBox},
  6.   hstcbo in 'hstcbo.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TfrmTestHistoryComboBox, frmTestHistoryComboBox);
  12.   Application.Run;
  13. end.
  14.